home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 4_6.lha / 4_6 / makefile < prev    next >
Makefile  |  1993-08-08  |  308b  |  22 lines

  1. C= CC -I. -I../../CC
  2. FLAGS= -I. -g +i
  3.  
  4. ll: 4_6test
  5.  
  6. BJ= 4_6a.o 4_6b.o 4_6c.o 4_6test.o randints.o timen.o
  7.  
  8. andints.o: randints.c
  9. cc -c randints.c
  10.  
  11. _6test: $(OBJ)
  12. $(CC) $(OBJ) -o 4_6test
  13.  
  14. MP= 4_6.cmp
  15. UT= 4_6.out
  16.  
  17. _6.out: 4_6test ;    4_6test > 4_6.out
  18.  
  19. est: all $(OUT) $(CMP)
  20. cmp 4_6.out 4_6.cmp
  21. echo tests done
  22.